<p><select size="1" name="country" onchange="fnGetId()">
<option value="AU">Australia</option>
<option value="US">USA</option>
<option value="HK">Hong Kong</option>
</select>
Country </p>
<SCRIPT>
function fnGetId(){
// Returns the first DIV element in the collection.
var type = document.getElementsByName("country")[0].value;
alert(type);
}
</SCRIPT>
<p><select size="1" name="city">
This works, how can i change type into a PHP variable????