I have 2 select menus with matching options e.g
<select id="select-one">
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
</select>
<select id="select-two">
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
</select>
What I need to do inside the change function is if an option is selected from either menu, hide/remove the matching option from the other list. I need to show it again when a different option is selected.
I hope that's enough info but please ask if you need any more.
EDIT
Sorry I missed it out but I am using the chosen plugin