Binding ActiveRecord to Drop Down box
You can use collection_select in order to bind Rails ActiveRecord to HTML drop down box for possible selections of your form. Please make sure all of the proper belongs_to and has_many relationships are set properly in your models.
<%= f.collection_select(:area_id,Area.all,:id,:name) %>