Non sono ferrato in javascript, ma prova questa cosa che funge magari sistemandola un po':

Codice PHP:
<?php
if (isset($_POST['a'])) {
    echo 
$_POST['a'];
}
?>

<head>
    <script type="text/javascript"> 
        function submitForm(x) {
            if (x == 1) {
                document.vota.a.value = "1";
            } else {
                document.vota.a.value = "2";
            }
            document.vota.submit();
        }
    </script>
</head>

<form name="vota" action="index.php" method="POST">
    <input type="hidden" name="a" value=""/>
    [img]mipiace.gif[/img]
    [img]nonmipiace.gif[/img]
</form>