# File lib/state_select.rb, line 13 def state_options_for_select(selected = nil, country = 'US') state_options = "" if country state_options += options_for_select(eval(country+'_STATES'), selected) end return state_options end