> How do I sort the states lists within each country? Try class State < ActiveRecord::Base belongs_to :country end class Country < ActiveRecord::Base has_many :states, :order => "name" end > > Thanks in advance! Hope this helps -- Posted via http://www.ruby-forum.com/.