Just use disabled and/or hidden attributes:
<option selected disabled hidden style="display: none" value=""></option>
selectedmakes this option the default one.disabledmakes this option unclickable.style="display: none"makes this option not displayed in older browsers. See: Can I Use documentation for hidden attribute.hiddenmakes this option to don’t be displayed in the drop-down list.