[Done, but with errors on page] What is the error, i can't figure it out?

Hi all,
This is the page, i want to test it in both Mozilla and IE. (after loading without submitting the page on browser.)
Design Cable

In Mozilla,
after loading the page, status bar shows ‘Done’.
But in IE(means IE8),
after loading the page, status bar shows ‘Done, but with errors on page’.

Can any one make it clear, where the error is?

Thanking you…

This usually indicates a JavaScript problem, is it valid code?

Download the web developers toolbar for Firefox and it will give you the error messages in a more ‘human’ way.

Error: missing ; before statement
Source File: Design Cable
Line: 1, Column: 35
Source Code: document.form.drop_2.selectedvalue=Choose One

So change to:


<body onload="document.form.drop_2.selectedvalue='Choose One'">

Thank you, SpikeZ.
Now the error has gone after i changed as you suggested…