Although the page on github (https://github.com/plataformatec/simple_form) did not say, but I assume that it is the same as in the example f.input :age, :collection => 18..60
You can use :label_methodand :value_method:
f.association :user, :collection => User.where(:country_id => 1), :label_method => :name, :value_method => :id
I have not used it before. Please tell me if this does not work.