Yea I have a model with acts_as_taggable_on :styles, my styles taggings are passed in from an array of check boxes:
<% styles.each do |style|%>
<%= check_box("tattoo", "style_list", {:multiple => true}, style, nil) %> <span class="tatto_style"><%= style %></span>
<% end %>
But I want to make sure that a user checks at least one style.