I have the following in a select_tag. It works fine. (I\'m using select_tag because it is for a search not tied to a model.)
options_from_collection_for_sele
add method full_name in your model :
def full_name "#{first_name} #{last_name}" end
and use this :
options_from_collection_for_select(@customers, :id, :full_name)
Hope this will help.