Is it possible to add an option like :include_blank => \'Please Select\' in a method select_tag like it is possible with the select
:include_blank => \'Please Select\'
select_tag
select
In Rails 3 there is a :prompt option for select_tag:
:prompt
select_tag "things", many_thing_as_options, :prompt => "Please select"