in reply to is there something like onChange action for a selection list ?
You have to change "myform" to match the name in your form element (form name="myform" it can be whatever you want). Then call the Javascript function in your onChange on the select menu:function submit_on_change() { document.myform.submit(); }
Hope that helps.onChange="submit_on_change()"
|
|---|