Well, in the <option> elements you have not specified a value, yet in your javascript you are trying to read it. Maybe this works in browsers like firefox, but IE won't allow it. It's an easy fix at least:
Code:
<option>No Svc</option>
<option>Discon</option>
<option>Recon</option>
<option>Both</option>
becomes
Code:
<option value="No Svc">No Svc</option>
<option value="Discon">Discon</option>
<option value="Recon">Recon</option>
<option value="Both">Both</option>
(check all your selects and fix em up)
Bookmarks