I have some seemingly innoscent looking code that goes as follows:

<SELECT NAME="calzone_options" onChange="OnChange(this);">

<option value="no" selected>calzone options</option>
<option value="90">Calzone</option>
<option value="91">Calzone Kiev</option>

</select>
This runs fine in IE5.5, but simply prints "calzone optionsCalzoneCalzoneKiev" in the newest Netscape.

I have tried taking away the onChange event for testing purposes, and it still did the same thing.

I also tried adding the size tag with the same results.

If anyone knows what I am doing wrong, help would be appriciated.

Thanks