With the standard Rails form_for, I was able to pass ajax requests though select and collection_select helpers as such:
<%= address.collection_select :cou
Figured it out. You just need to add the this:
:input_html => {"data-remote" => true, "data-url" => "/yoururl", "data-type" => :json}