how can I disable the option in the second choice part? For example, In the FIRST CHOICE* form I chose the "Art & Design" option then it must be disabled in the SECOND CHOICE* form. I'm not really sure about my JavaScript code. Please help me thank you!
div class="mb-3 col-lg-6 positionn"><h6>FIRST CHOICE*</h6>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js">
$('#first').change(function() {
$('#second option[value="Art & Design"]').prop('disabled', $(this).val() == 'Art & Design')
});
</script>
<select required class="form-control" style="border-radius: 25px;" name="firstchoice" id="first">
<option disabled selected value="">Select First Choice</option>
<option value="Art $ Design">Art & Design</option>
<option>Content Development</option>
<option>Customer Support</option>
<option>Managing</option>
<option>Marketing</option>
<option>Photo</option>
<option>Video</option>
<option>Web Development</option>
</select>
</div>
<div class="mb-3 col-lg-6 positionn"><h6>SECOND CHOICE*</h6>
<select required class="form-control" style="border-radius: 25px;" name="secondchoice" id="second">
<option disabled selected value="">Select Second Choice</option>
<option value="Art $ Design">Art & Design</option>
<option>Content Development</option>
<option>Customer Support</option>
<option>Managing</option>
<option>Marketing</option>
<option>Photo</option>
<option>Video</option>
<option>Web Development</option>
</select>
</div>