non so che classe stai usando, per popolare la tua select puoi fare:
Codice PHP:
$sql " SELECT * from categorie order by id";
$result mysql_query($sql)or die(mysql_error());
// dentro il tuo IF
// ......
//<select name="tuo_campo">
while($row=mysql_fetch_array($result))
{
echo
"<option value=" $row["tuo_campo"]  .">" $row["tuo_campo"]  ."</option>";    
}
//</select> 
prova e facci sapere