Mar 3rd, 2009, 12:43 PM
Ah, I see. In that case, try tweaking the JS function to this:
Unless I missed something, that should be all you need to do. Let me know!
Code:
<script language="JavaScript" type="text/javascript">
<!--
function getguide ( selectedtype )
{
var f = document.getElementById("supporttype");
// if everything validates OK, submit the form!
if (rsv.validate(f, rules))
{
document.supportform.supporttype.value = selectedtype ;
document.supportform.submit() ;
}
}
-->
</script>
Unless I missed something, that should be all you need to do. Let me know!