Rails Select Helper

Dear All,

I m using the below select helper for my select helper which works fine.

<%=privilege. select :AC,Role.find(:all,:conditions => {:role_type =>
“AC”}).collect {|c| [ c.role_name, c.id ] },{},{:class => “txtbox”} %>

Its generates the below html…

Trainees Test Group Role

Is it possible to add title for the select options…
i need like below…is it possible to get this via rails select
helper…

Test Group Role

Kindly give your suggestions and helps.
Thanks

You want to lookup collection_select in the Rails API. It is a whole
lot easier for what you are trying to do.
Bharat