In this example, I'm pulling the data for a field that has an ID of 13 - change this as needed. :)
<select name="field_id_13">{exp:query sql="SELECT field_list_items FROM exp_weblog_fields WHERE field_id = '13' "} <? $items ="{field_list_items}"; $items = explode("\n", $items); $howmany = count($items); $i = 0; do { $item_id = $items[$i]; ?> <option value="<?=$item_id?>"><?=$item_id?></option> <? $i++; } while ($i < $howmany); ?> {/exp:query}</select>