HTML
<select name="selectt" id="select" class="data_field"> <option>1</option> <option>2</option> <option>3</option> <option>4</option> </select>
I can get option
elements via js
select_prod.querySelectorAll('select>option');
But the question is how to remove them later? The cycle does not quite fit because when selecting the previous select, additional options are loaded here.