stateSel.options[stateSel.options.length] = new Option(state, state);
stateSel.onchange = function () { countySel.length = 1; // remove all options bar first citySel.length = 1; // remove all options bar first if (this.selectedIndex < 1) return; // done for (var county in stateObject[this.value]) { countySel.options[countySel.options.length] = new Option(county, county); } }
//Запускать после кода свитАлерт (когда форма создана)
const input = document.querySelector('input');
input.value = someValue;