i have the following select element:<br><br><select name="AvailableLists" size="10" onClick="updateDescription(this.form)"><br><option value="1">General</option><br><option value="2">Discworld</option><br><option value="3">Spellbound</option><br><option value="4">Myth and Magic</option><br><option value="5">Enchantica</option><br><option value="6">Pocket Dragons</option><br><option value="7">Canterbury Bears</option><br><option value="8">Steiff Bears</option><br></select><br><br><br>when i use the following function:<br><br>function updateDescription(theForm){<br>theForm.descriptionField.value = MailListDescription[theForm.AvailableLists.options[theForm.AvailableLists.SelectedIndex].value]<br>}<br><br><br>It works fine in IE but gives the following error message in Netscape:<br><br>theForm.AvailableLists.options[theForm.AvailableLists.SelectedIndex]<br>has no properties.<br><br>I am a little stuck to say the least, are there any other ways i can address this that will work in both explorer and netscape?