Ron,
Thanks for the reaction, the problem I have is that I don't do a reload using the POST method but in the javascript,
<select size="1" name="NEC_COUNTRY" onChange="reloadPage(this)">
<option value="BE"<? if(isset($COUNTRY) && $COUNTRY=="BE")) { echo " Selected"; } ?>>België</option>
<option value="NL"<? if(isset($COUNTRY) && $COUNTRY=="NL")) { echo " Selected"; } ? >>Nederland</option>
</select>
function reloadPage()
{
var url = "/neck/neck.php?country=" + document.forms[0].NEC_COUNTRY.value;
window.location.href = url;
}
So I reload the page when country changes, because then the form itself has to change - and the information that stays the same and is already filled in has to stay.
Hope this makes sense. Thanks for the reaction, I'll try some things with it.