In order to achieve this you will have to create a new "Drop-down" component, lets say "test".
In the "Items" are paste the following code:
//<code>
$items = "|Please Select[c]\n";
$db =& JFactory::getDBO();
$db->setQuery("SELECT your_value, your_label FROM your_table");
$result = $db->loadObjectList();
foreach ($result as $r)
$items .= $r->your_value . '|' . $r->your_label . "\n";
return $items;
//</code>
Note:
If you have magic quotes activated you will need to use "\\n" instead of "\n".






