include("../connect.phtml");
$thesql = "select flyfrom from soto group by flyfrom order by flyfrom ";
$result = mysql_query($thesql);
$x=0;
while ($row = mysql_fetch_array($result)){
$newval = $row["flyfrom"];
$retval .= "";
$x++;
}
echo "function filloptions(){
document.write('$retval');
}";