<%= select_for_tag :name,
options_for_select(complex.stuff.collect{|d| d.stuff} + ['other', 'stuff']) %>
<%= select_for_tag :name,
options_for_select(complex.stuff.collect{|d| d.stuff} + admin_selection_choices(user) + ['other', 'stuff']) %>
def admin_selection_choices(user)
if user.admin
['admin', 'choices']
else
[]
end
end