What do you put as the action in the form tag?
Chris King wrote:
Pretty trivial, put the following code in the SELECT tag...
onChange='form_action_select(this.value);'
Then, in the head of the html document have a javascript function that looks like this:
function form_action_select(action) {
if (action == 2)
document.forms[0].action = 'firstform.php';
elseif (action == 3)
document.forms[0].action = 'secondform.php';
etc etc.. you can use whatever logic you like.