diff --git a/suggestedterms.install b/suggestedterms.install
index 3f96fb7..aa93b37 100755
--- a/suggestedterms.install
+++ b/suggestedterms.install
@@ -20,4 +20,5 @@ function suggestedterms_install() {
 function suggestedterms_uninstall() {
   variable_del('suggestedterms_maximum_displayed');
   variable_del('suggestedterms_sort_order');
+  variable_del('suggestedterms_display_fieldset');
 }
diff --git a/suggestedterms.module b/suggestedterms.module
index 36968bf..abeae9f 100755
--- a/suggestedterms.module
+++ b/suggestedterms.module
@@ -12,6 +12,10 @@ define('SUGGESTEDTERMS_SORT_USED', 4);
 define('SUGGESTEDTERMS_DISPLAY_ALL', 1);
 define('SUGGESTEDTERMS_DISPLAY_USED', 2);
 
+define('SUGGESTEDTERMS_DISPLAY_FIELDSET', 0);
+
+
+
 /**
  * Implementation of hook_help().
  */
@@ -135,8 +139,18 @@ function suggestedterms_form_alter(&$form, $form_state, $form_id) {
           $tag_description = t('Terms by name');
           break;
       }
+      
+      $display_fieldset = variable_get('suggestedterms_display_fieldset', SUGGESTEDTERMS_DISPLAY_FIELDSET);
+    
+      if ($display_fieldset == TRUE ) {
+         $form['taxonomy']['tags'][$vid]['#description'] .= '<fieldset class="collapsible collapsed"><legend>Existing Tags</legend><div>';
+      }
       // Build the suggested terms and set in description tag.
-      $form['taxonomy']['tags'][$vid]['#description'] .= "<br />\n". $tag_description . ': ' . _suggestedterms_build_suggestions($vid, $sort_order, $display_what);
+      $form['taxonomy']['tags'][$vid]['#description'] .= "<div><br />\n". $tag_description . ': ' . _suggestedterms_build_suggestions($vid, $sort_order, $display_what);      
+      if ($display_fieldset == TRUE ) {
+        $form['taxonomy']['tags'][$vid]['#description'] .= '</div></fieldset>';
+      }  
+   
     }
   }
 }
@@ -176,6 +190,13 @@ function suggestedterms_admin() {
        SUGGESTEDTERMS_DISPLAY_USED => t('Previously-used terms'),
        SUGGESTEDTERMS_DISPLAY_ALL => t('All terms'),
      ),
+  ); 
+   $form['suggestedterms_display_fieldset'] = array(
+     '#type' => 'checkbox',
+     '#prefix' => '<h4>Display Options</h4>',
+     '#title' => t('Display the terms in a collapsed fieldset'),
+     '#default_value' => variable_get('suggestedterms_display_fieldset', SUGGESTEDTERMS_DISPLAY_FIELDSET),
+     '#description' => t("The terms will be wrapped in a fieldset that is collapsed by default"),
   );
 
   return system_settings_form($form);
