diff --git a/plugins/content_types/bean_panels.inc b/plugins/content_types/bean_panels.inc
index 14c4d47..f1109ea 100755
--- a/plugins/content_types/bean_panels.inc
+++ b/plugins/content_types/bean_panels.inc
@@ -52,10 +52,16 @@ function bean_panels_bean_panels_content_type_edit_form($form, &$form_state) {
     );
   }
 
+  $beans = bean_get_all_beans();
+  $beans_options = array();
+  foreach($beans as $bean) {
+    $beans_options[$bean->delta] = $bean->title;
+  }
   $form['bean_delta'] = array(
-    '#type' => 'textfield',
-    '#title' => t('Bean delta'),
-    '#description' => t('Enter the bean delta to use in this pane.'),
+    '#type' => 'select',
+    '#options' => $beans_options,
+    '#title' => t('Bean'),
+    '#description' => t('Select the bean you want to display.'),
     '#default_value' => $conf['bean_delta']
   );
 
