i disagree if the select box has not been selected and ther is no innitialy selected item then the $_POST for the select will not be set
you can test with below
<form action="" method="post" name="fi">
<select name="ft">
<option value="gggg">gggg</option>
<option value="jjjjjjj">jjjjjj</option>
</select>
<input name="submit" type="submit" value="submit"></form>
<?php
if(isset($_POST['ft'])) echo"set";
?>