How to add dropdown list to this?

Pretty new to all of this....getting frustrated.

<form name="sform" action="" style="display:inline;"> <label for="item_name"><font face=tahoma size=2>Search Service Tag:</font> </label> <%= text_field_tag("query2", @params['query2'], :size => 10 ) %> </form>

What do you mean? Could you post a full question, some problem you may be having? If you just want a select box in the forum, check out the Rails API docs (api.rubyonrails.com) for helpers you can use.

Jason

http://76.186.99.71:3000/bisdinvs/list

thats what I have so far. I want to add some more search items, and some of them will be static, so I need to use a drop down list.

http://api.rubyonrails.org

look at #collection_select and related helpers (http://api.rubyonrails.org/classes/ActionView/Helpers/FormOptionsHelper.html )

Jason