Sounds like you're mixing up client-side and server-side
code. They are
completely independant. You can't put client-side code inside
your dynamic
<%%> blocks. ie. this won't work:
<%
document.forms["GroupForm"].elements["GroupDD"].disabled='true';
%>
will need to be on the client instead. ie
<script>
document.forms["GroupForm"].elements["GroupDD"].disabled='true';
</script>
--
Jules
http://www.charon.co.uk/charoncart
Charon Cart 3
Shopping Cart Extension for Dreamweaver MX/MX 2004