JSFiddle - React, Tailwind, and code Playground

HTML

<select class="select" id="select" size="5">
    <option id="option" value=""></option>
</select>
<hr />
<input id="button" type="button" value="Remove option" />

CSS

.select {
    width: 200px;
}
select option[value=""], select option[value="?"] {
    display: none;
}

JavaScript

var select = document.getElementById('select');
var option = document.getElementById('option');
var button = document.getElementById('button');
button.onclick = function(){
    select.removeChild(option);
    button.style.display="none";
};