Mira, podrías hacer algo asi:
Código:
<?php
include('CONECCIONADB.php');
echo "<select name='pepe'>";
$result = MYSQL_QUERY("SELECT * FROM datos");
while($actual = mysql_fetch_array($result)) {
echo "<option>".$actual['valor']."</option>";
}
echo "</select>";
?>