Drop down select box





Last ned dropd.js her
Den henter du inn mellom HEAD-taggene dine ved å bruke
<script type="text/javascript" src="adresse/dropd.js"> </script>




Formen går sånn:

<form name=form>
<table align="center"><tr><td>
<select id="firstChoice" name="firstChoice" onchange="selectChange(this, form.secondChoice, arrItems1, arrItemsGrp1);">
<option value="0" selected>[SELECT]</option>
<option value="1">Land</option>
<option value="2">Sea</option>
<option value="3">Air</option>
</select>
</td><td>
<select id="secondChoice" name="secondChoice" onchange="selectChange(this, form.thirdChoice, arrItems2, arrItemsGrp2);">
</select>
<select id="thirdChoice" name="thirdChoice">
</select>
</td></tr></table>
</form>