var select = document.querySelector('#id1 select'); var text = ['Текст', 'Свой текст2', 'Свой текст3']; for (var i = 0, option; option = select.options[i]; i++) { option.textContent = option.value = text[i]; }