I want to simulate a form submission when the user selects something from a drop-down list, instead of having him/her clicking the submit button.

I'm thinking something like the following:

Code:
<SCRIPT LANGUAGE=vbscript>
<!--

Sub selectMenu_onafterupdate

   document.myform.mySumbitButton = clicked

End Sub

-->
</SCRIPT>
Is this the correct way to simulate a click of a button? Will simply simulating the click of the submit button cause the form to be submitted?

Thanks.

dvst8