I have the same problem. I found a solution which works excelent in Firefox but not in IE. :(

This works in Firefox:
Code:
if(hyde == 1)
  document.FormName.SelectName.options[2].style.display = 'none';
else
  document.FormName.SelectName.options[2].style.display = 'block';
Does anybody know how to make it work in IE ???

---