diff --git a/app/views/plans/_guidance_choices.html.erb b/app/views/plans/_guidance_choices.html.erb
index 6763f49..bf00fb3 100644
--- a/app/views/plans/_guidance_choices.html.erb
+++ b/app/views/plans/_guidance_choices.html.erb
@@ -3,23 +3,18 @@
<%= check_box_tag "guidance_group_ids[]", groups[0].id,
current_selections.include?(groups[0].id), class: 'guidance-choice' %>
- <%= form.label org.name, for: groups[0].id,
- class: 'inline checkbox-label regular-text guidance-group-label' %>
+ <%= org.name %>
<% elsif groups %>
-
-
+ <%= org.name %>
<% groups.each do |group| %>
-
- └─
+ └─
<%= check_box_tag "guidance_group_ids[]", group.id,
current_selections.include?(group.id), class: 'guidance-choice' %>
- <%= form.label group.name, for: group.id,
- class: "left-indent checkbox-label regular-text guidance-group-label" %>
+ <%= group.name %>
<% end %>