# File lib/merb-helpers/form/builder.rb, line 96 def unbound_select(attrs = {}) update_unbound_controls(attrs, "select") attrs[:name] << "[]" if attrs[:multiple] && !(attrs[:name] =~ /\[\]$/) tag(:select, options_for(attrs), attrs) end