Well, I think that's just because you echo() the returning value of the function Dropdown, but it doesn't return anything.
You should change the functions like this:
function Dropdown($selectname,$table,$column) {
$sReturn = "<select name='".$selectname."'>";
$result = mysql_query("SELECT $column FROM $table ORDER by $column ASC");
while ($myrow = mysql_fetch_array($result)) {
$sReturn .= "<option value=\"" . $myrow["$column"]. "\"";
$sReturn .= $myrow["$column"]. "</option>\n";
}
$sReturn .= "</select>";
return $sReturn;
}
Regards
ReM