folgendes problemm

PHP-Code:
<?php        

 $abfrage 
"SELECT * FROM Accounts WHERE Kundennr = '".$_SESSION["user_Kundennr"]."'";
  
$ergebnis mysql_query($abfrage);
  while(
$row mysql_fetch_object($ergebnis))
    {
    echo 
'<tr bgcolor="#CAE4FF"> 
          <td valign="top"><font size="3">' 
.$row->Account'</font></td>
          <td valign="top"><font size="3">' 
.$row->Server'</font></td>
          <td valign="top"><font size="3">' 
.$row->Status'</font></td>
          <td> <form name="form1" method="post" action="">
              <p> 
                <select name="action" size="1" id="action">
                  <option value="accountdetails.php" selected>Account Details</option>
                  <option value="Identd.php">Identd &auml;ndern</option>
                  <option value="Accountupdate.php">Account Update</option>
                  <option value="Serverwechsel.php">Server wechsel</option>
                </select>
                <input type="submit" name="Submit" value="Abschicken">
              </p>
            </form></td>
        </tr>'
;
}
?>
ich möchte wenn man eine option auswählt und es abschickt das man zu der dazugehörige seite kommt.

also option Account Details gewählt und abgeschickt kommt man zu accountdetails.php