Drop down in a form_for action?

Hey, I was just looking over the Rails API for form helpers here....

http://api.rubyonrails.com/classes/ActionView/Helpers/FormHelper.html

I noticed that there is no tag for a select/drop down menu?? I need to create two separate drop downs for my form, one that allows the user to choose a condition (new, excellent, good, fair) and one that allows them to choose the category that they want to place the item in (men's, women's, children's, etc.). Can anyone point me in the right direction for creating a drop down for my form?

Here is my current generic form_for code:

<% form_for @item do |f| %> <p>title:<br /> <%= f.text_field :title %> </p> <p>color:<br /> <%= f.text_field :color %> </p> <p>brand:<br /> <%= f.text_field :brand %> </p> <p>description:<br /> <%= f.text_area :description %> </p> <p> <%= submit_tag %> <% end %>

--Cory

This:

<%= select :facilitator, :id, @facilitators.map{|u| [u.surname,u.id]}

will create this:

<select id="facilitator_id" name="facilitator[id]"> <option value=""></option> <option value="1">jj</option> </select>

j

Also check out collection_select in the Rails Framework doc (http://api.rubyonrails.org/)

collection_select(:post, :author_id, Author.find(:all), :id, :name_with_initial, {:prompt => true})