I have the following in the page
Apple Cars
To remove options in a select by value I would do (in pure JS) :
[...document.getElementById('val').options] .filter(o => o.value === 'A' || o.value === 'C') .forEach(o => o.remove());