Try this:
1. Initially have the action attribute empty - action=''.
2. Set up an 'onchange' function for your select box, e.g., 'onchange = gosearch();'.
3. Within this function do:
.... check for the value selected
.... set action accordingly using - document.form.action = 'actionrequired';
.... submit using - document.form.submit();