you could just add the disabled attribut to the tag. or to refrence that attribute from javascript:
document.formName.selectName.disabled=true;
also, you could just remove all of the options from the list:
document.formName.selectName.options.length=0;
although i am not sure about the second one, i do know that if it works, there will not be any way to put the options back in.
hope this helps
theEclipse
eclipse_web@hotmail.com
robacarp.webjump.com
**-Trying to build a documentation of a Javascript DOM, crossbrowser, of course. E-mail me if you know of any little known events and/or methods, etc.