How do I get the values from a select box with an onChange on the first, adding options to the second??
I have the code to do this, but i'm getting an error 'object expected' on the first line below.
I have the code to do this, but i'm getting an error 'object expected' on the first line below.
Code:
<select name="listOne" onClick="changeOptions(this, document.form1.listTwo);">
<option value="">Please select</option>
<option value ="1">Telephone</option>
<option value ="2">Correspondence</option>
</select>
<select name="listTwo" >
<option value="">Please Select </option>
[\code]
Any help would be great