se usando un form hai problemi di margini vari si risolve con i css, ma tutti gli elementi di un form devono stare in un form,
non sarebbe sintatticamente e logicamente corretto il contrario

se hai
<form action="www.aaa.it/pagina.php" method="get">
basta
<select name="mesxpag" onchange="this.form.submit()">

e verrai mandato a
http://www.aaa.it/pagina.php?mesxpag...atodallaselect

altrimenti
codice:
<select name="mesxpag" onchange="self.location.href='www.aaa.it/pagina.php?mesxpag='+this.options[this.selectedIndex].value">
ciao