Thanks a lot Mr.Kows for always answered me..but i dont understand your coding.I pulled the country name from database..this is my codes..hope you can help me.

PHP Code:
<select name="country">
<option>Select Country</option>
<? 
    $query=mysql_query("SELECT * FROM Country ORDER BY country_name");
    while($edit=mysql_fetch_array($query))
    {?>
    <option value="<? echo $edit['country_id']?>">
    <? echo $edit['country_name']?>
    </option>
    <? 
    }    
    ?>

</select>
Thanks in advance