I have a dropdown box where the user must choose the country.
Once he selected the country, the field must appear.
How get the Select to execute without having a button?
<?
$coun = mysql_query("Select * from country",$con);
$counrows = mysql_num_rows($coun);
$n = 0;
?>
<select name="coun">
<option value="noselect" selected>Select Country</option>
<?
while($row = mysql_fetch_array($coun, MYSQL_ASSOC)){
$n++;
?>
<option value="<?php echo $row['country_name'];?>"><?php echo $row['country_name'];?></option>
<?
}
?>
</select>