const allSelects = document.querySelectorAll('.contactType');
function toggleInputType(selectElement) {
const inputElement = selectElement.parentElement.querySelector('.contactDescr');
inputElement.type = selectElement.value === 'tel'
? 'tel'
: 'text';
}
for (const select of allSelects) {
select.addEventListener('change', () => {
toggleInputType(select)
});
}
<img
, заменяем на <img alt='...'