Hi,
This is how I solved a similar problem. It is using javascript for the submit, and an imagemap (in your case you would have to edit the code a bit: You can remove the Act=" + document.postcodezoeken.Act.value + "& bit. But the general ID shoul dbe clear, I suppose:
<SCRIPT LANGUAGE="javascript">
function processform(Prov) {
newLocation = "results.php?Act=" + document.postcodezoeken.Act.value + "&Prov=" + Prov ;
document.location.href = newLocation;
return;
}
</script>
<form method="post" action="results.php" name="postcodezoeken" >
<IMG SRC="gif/nl.gif" USEMAP="#nl" NAME="img1" BORDER=0>
<MAP NAME="nl">
<AREA SHAPE=POLY COORDS="3,375,25,377,24,370,44,372,53,378,58,384,72,383,101,370,109,363,114,352,106,341,107,331,103,319,98,309,87,298,69,285,39,287,9,320,0,351,0,367,5,374"
ALT="Zeeland" onClick="processform('11'); return true"
OnMouseOver="imgOn('img1'); return true" onMouseOut="imgOff()">
// blablablabla
</form>