diff --git a/app/views/mats/_form.html.erb b/app/views/mats/_form.html.erb
index 4a654a0..0e7a111 100644
--- a/app/views/mats/_form.html.erb
+++ b/app/views/mats/_form.html.erb
@@ -17,12 +17,7 @@
<% if @tournament_field %>
- <%= f.hidden_field :tournament_id, :value => @tournament_field %>
-<% else %>
-
diff --git a/app/views/schools/_form.html.erb b/app/views/schools/_form.html.erb
index 7d3c724..7eaa610 100644
--- a/app/views/schools/_form.html.erb
+++ b/app/views/schools/_form.html.erb
@@ -18,11 +18,6 @@
<% if @school %>
<%= f.hidden_field :tournament_id, :value => @tournament_field %>
- <% else %>
-
- <%= f.label 'Tournament' %>
- <%= f.collection_select :tournament_id, Tournament.all, :id, :name %>
-
<% end %>
diff --git a/app/views/weights/_form.html.erb b/app/views/weights/_form.html.erb
index c85057d..10436cd 100644
--- a/app/views/weights/_form.html.erb
+++ b/app/views/weights/_form.html.erb
@@ -18,12 +18,6 @@
<% if @weight %>
<%= f.hidden_field :tournament_id, :value => @tournament_field %>
- <% else %>
-
- <%= f.label 'Tournament' %>
- <%= f.collection_select :tournament_id, Tournament.all, :id, :name %>
-
- <% end %>
<%= f.submit 'Submit', :class=>"btn btn-success" %>