diff --git a/makemeeting.module b/makemeeting.module
index a4da5d0..ed898c5 100755
--- a/makemeeting.module
+++ b/makemeeting.module
@@ -277,13 +277,16 @@ function makemeeting_field_widget_form(&$form, &$form_state, $field, $instance,
         _makemeeting_choice_form($key, $choice['chdate'], $choice['chsuggestions'], $form_state['suggestion_count']);
     }
   }
-
+  // add a day to the last options time stamp
+  $additional_stamp = strtotime('+2 day', _makemeeting_date_timestamp($choice['chdate']));
+  // build default date
+  $default_date = array('month' => date('n', $additional_stamp), 'day' => date('j', $additional_stamp), 'year' => date('Y', $additional_stamp));
   // Add initial or additional choices.
   $existing_delta = $delta;
   for (; $delta < $form_state['choice_count']; $delta++) {
     $key = 'new:' . ($delta - $existing_delta);
     $element['choices_wrapper']['choices'][$key] =
-      _makemeeting_choice_form($key, '', NULL, $form_state['suggestion_count']);
+      _makemeeting_choice_form($key, $default_date, $choice['chsuggestions'], $form_state['suggestion_count']);
   }
 
   // We prefix our buttons with 'makemeeting' to avoid conflicts
