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| %>

title:
<%= f.text_field :title %>

color:
<%= f.text_field :color %>

brand:
<%= f.text_field :brand %>

description:
<%= f.text_area :description %>

<%= submit_tag %> <% end %>

–Cory

This:

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

will create this:

jj

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})