Это не так, как вы делаете это в Drupal. Прочитайте this , прежде чем пытаться создать форму в Drupal
Вот как должен выглядеть элемент select:
$form['feed'] = array(
'#type' => 'select',
'#title' => t('Display of XML feed items'),
'#default_value' => variable_get('feed_item_length','teaser'),
'#options' => array(
'title' => t('Titles only'),
'teaser' => t('Titles plus teaser'),
'fulltext' => t('Full text'),
),
'#description' => t('Global setting for the length of XML feed items that are output by default.'),
);