I would like to create a series dropdown boxes, each containing the same listing content. However, when one option is selected from the preceeding dropdownbox, that element is removed from the remaining boxes. I would like this process to continue until all selection have been selected.
1 <select name="box1">
<option>value 1</option>
<option>value 2</option><!--if this is selected-->
<option>value 3</option>
</select>
2 <select name="box2">
<option>value 1</option><!--if this is selected-->
<option>value 2</option><!--NOT SELECTABLE-->
<option>value 3</option>
</select>
3 <select name="box3">
<option>value 1</option><!--NOT SELECTABLE-->
<option>value 2</option><!--NOT SELECTABLE-->
<option>value 3</option> <!--The ONLY SELECTABLE OPTION-->
</select>
ANy thoughts on how this can achieved?