I am struggling with trying to figure out a way to make a particular option compulsory. I need the user to select it with no option of anything else, while also making sure that if they have already selected a particular option it is disabled. Is there perhaps a way to do this? I have done some research on the matter but I keep coming on short of answers. They all involve jquery and libraries which I have never used before. Below is the code used for the selection.
<!-- High Quality Protein Sources: -->
<label class="select" for="High Quality Protein Sources:">High Quality Protein Sources:
<br>(Make sure Animal Protein sourses are allowed in your country)
</label>
<select required="true">
<option value=""> Please Select 1</option>
<option value="1" required="true">Soybean Meal (47% CP) (Compulsory)</option>
<option value="2">Soybean Full-Fat (heat treated)</option>
<option value="3">Peanut Meal (>5% oil)</option>
<option value="4">Peas (Field Peas)</option>
<option value="5">Fish Meal (60 - 68% CP)</option>
<option value="6">Blood Meal</option>
<option value="7">Black Soldier Fly Lar</option>
<option value="8">Bakery Waste (eg Bread)</option>
<option value="9">Meat & Bone Meal (High Fat)</option>
</select>
<select required>
<option value=""> Please Select 1</option>
<option value="1">Soybean Meal (47% CP) (Compulsory)</option>
<option value="2">Soybean Full-Fat (heat treated)</option>
<option value="3">Peanut Meal (>5% oil)</option>
<option value="4">Peas (Field Peas)</option>
<option value="5">Fish Meal (60 - 68% CP)</option>
<option value="6">Blood Meal</option>
<option value="7">Black Soldier Fly Lar</option>
<option value="8">Bakery Waste (eg Bread)</option>
<option value="9">Meat & Bone Meal (High Fat)</option>
</select>
Someone suggested that I make the compulsory options in their own selects where they are the only option it is working as intended so thank you – OMi Shah and everyone else who left advice