I have this form:
<input type="checkbox" value="First" />First
<input type="checkbox" value="Second" />Second
<input type="checkbox" value="Third" />Third
<select name="first-drop">
<option value="---">---</option>
<option value="Option1">Option1</option>
<option value="Option2">Option2</option>
</select>
Is there a way (using JS/jQuery) I can change the value of first-drop to --- whenever the First check box is unchecked?
LIVE DEMO
Note that I fixed you markup:
Update:
What you want now is:
LIVE DEMO
If you will give your DOM elements ids it can be simple as that:
Updated DOM:
LIVE DEMO