let select = document.getElementById('select-form');let option = select.getElementsByClassName('label');option.setAttribute('class', 'vydelit'); option.forEach((o) => o.setAttribute('class', 'vydelit'));let select = document.getElementById('select-form');
let option = select.querySelector('.label');
option.setAttribute('class', 'vydelit');let option = select.getElementsByClassName('label')[0];илиlet option = select.querySelector('.label');