<script>

const delSelector = document.querySelector('.orderChargeSelect');


for (let i = 0; i < delSelector.options.length; i++) {

    if (delSelector.options.length <= 2) { 

// Remove if statement if wanting to select first available option where there are more than 1 options

        delSelector.selectedIndex = 1;

    }

}

</script>



<style type="text/css">

/** HIDE PLEASE SELECT OPTION **/

.orderChargeSelect option:first-child {

    display: none;

}

</style>