I have a rails form where the end user is going to drop down a list of categories, select a category. I need this selection to update the next select drop down. The issue is that the 2nd select needs to be populated by static data from a partial.
The reason for this, is that its a product registration page, that includes more options than just those living in the db. In fact hardly any of the data is in the db, so it will be easier to just setup 5 lists in partials, that are loaded depending on the category selection.
Just not sure how to set this up. I am using Jquery 1.3.2 and Rails 2.3.3
Any help is greatly appreciated.