diff --git a/app/views/plans/_dropdowns_new_plan.html.erb b/app/views/plans/_dropdowns_new_plan.html.erb
new file mode 100644
index 0000000..c7e9d7e
--- /dev/null
+++ b/app/views/plans/_dropdowns_new_plan.html.erb
@@ -0,0 +1,41 @@
+
+
+<%= semantic_form_for @plan, url: plans_path(@plan) do |f| %>
+ <%= f.inputs do %>
+ <%= hidden_field_tag :default_tag, "false" ,:id => "default_tag" %>
+
+
+
<%= _('Create a new plan') %>
+
+
<%= raw _("
Please select from the following drop-down so we can determine what questions and guidance should be displayed in your plan.
")%>
+
+
+
+
+
+
+
+
+ <%= f.input :funder_id,
+ :as => :select,
+ :collection => @funders,
+ :label => _('Select your research funder or no funder, as appropariate.'),
+ :input_html => { :multiple => false, :class => ["select2", "select2-container"] },
+ :include_blank => _('Select Funder') %>
+
+
+
+
+
+
+ <% end %>
+
+
+ <%= f.actions do %>
+ <%= f.action :submit,
+ :as => :button,
+ :input_html => { :id => "create-plan-button", :class => "btn btn-primary"},
+ :label => _('Create plan') %>
+ <% end %>
+
+<% end %>