diff --git a/modules/dart_taxonomy/dart_taxonomy.module b/modules/dart_taxonomy/dart_taxonomy.module
index 203a1c1..74f4f31 100644
--- a/modules/dart_taxonomy/dart_taxonomy.module
+++ b/modules/dart_taxonomy/dart_taxonomy.module
@@ -136,41 +136,39 @@ function dart_taxonomy_form_alter(&$form, &$form_state, $form_id) {
         '#theme'      => 'no_submit_button',
       );
   
-      if (empty($form_state)) {
-        $term             = taxonomy_get_term($form['term_data']['tid']['#value']);
-        $map              = dart_taxonomy_map_get($term->tid);
-        $default_key      = variable_get('dart_taxonomy_default_key', 'term');
-        $default_val_func = variable_get('dart_taxonomy_default_callback', '_dart_taxonomy_callback_tid');
-        $default_val      = $default_val_func($term);
-  
-        $form['term_data']['dart'] = array(
-          '#type'           => 'fieldset',
-          '#title'          => 'DART ad tag settings',
-          '#weight'         => 15,
-          '#description'    => t('Use the fields below to indicate how this term should be displayed if it is included in a DART ad tag.'),
-          '#collapsible'    => TRUE,
-          '#collapsed'      => FALSE,
-        );
-        $form['term_data']['dart']['key'] = array(
-          '#type'           => 'textfield',
-          '#default_value'  => isset($map['key']) ? $map['key'] : '',
-          '#title'          => 'key',
-          '#maxlength'      => 32,
-          '#description'    => t('If this field is left blank, the default value will be used: %default', array('%default' => $default_key)),
-        );
-        $form['term_data']['dart']['val'] = array(
-          '#type'           => 'textfield',
-          '#default_value'  => isset($map['val']) ? $map['val'] : '',
-          '#title'          => 'val',
-          '#maxlength'      => 32,
-          '#description'    => t('If this field is left blank, the default value will be used: %default', array('%default' => $default_val)),
-        );
-        $form['term_data']['dart']['exclude'] = array(
-          '#type'           => 'checkbox',
-          '#title'          => 'exclude this term from DART ad tags',
-          '#default_value'  => isset($map['exclude']) ? $map['exclude'] : 0,
-        );
-      }
+      $term             = taxonomy_get_term($form['term_data']['tid']['#value']);
+      $map              = dart_taxonomy_map_get($term->tid);
+      $default_key      = variable_get('dart_taxonomy_default_key', 'term');
+      $default_val_func = variable_get('dart_taxonomy_default_callback', '_dart_taxonomy_callback_tid');
+      $default_val      = $default_val_func($term);
+
+      $form['term_data']['dart'] = array(
+        '#type'           => 'fieldset',
+        '#title'          => 'DART ad tag settings',
+        '#weight'         => 15,
+        '#description'    => t('Use the fields below to indicate how this term should be displayed if it is included in a DART ad tag.'),
+        '#collapsible'    => TRUE,
+        '#collapsed'      => FALSE,
+      );
+      $form['term_data']['dart']['key'] = array(
+        '#type'           => 'textfield',
+        '#default_value'  => isset($map['key']) ? $map['key'] : '',
+        '#title'          => 'key',
+        '#maxlength'      => 32,
+        '#description'    => t('If this field is left blank, the default value will be used: %default', array('%default' => $default_key)),
+      );
+      $form['term_data']['dart']['val'] = array(
+        '#type'           => 'textfield',
+        '#default_value'  => isset($map['val']) ? $map['val'] : '',
+        '#title'          => 'val',
+        '#maxlength'      => 32,
+        '#description'    => t('If this field is left blank, the default value will be used: %default', array('%default' => $default_val)),
+      );
+      $form['term_data']['dart']['exclude'] = array(
+        '#type'           => 'checkbox',
+        '#title'          => 'exclude this term from DART ad tags',
+        '#default_value'  => isset($map['exclude']) ? $map['exclude'] : 0,
+      );
       break;
   }
 }
