var Location = {};

Location.CountrySelector = function(locale, userID, context){    
  $('#country_id').change(function() {        
    var url = "/" + locale + "/countries/" + this.value + "/organizations?context=" + context + "&user_id=" + userID;
    $.ajax({
      type   : 'get', 
      url    : url,
      success: function(html){ $('#organizations_select').html(html); }
    });
    return false; 
  }); 
}  

Location.OrganizationLocationSelector = function(locale, userID, context){   
  $('#affiliation_organization_id').change(function(event) {      
    var url = "/" + locale + "/organizations/" + this.value + "/locations?context=" + context + "&user_id=" + userID;    
    $.ajax({
      type   : 'get',
      url    : url,
      success: function(html){ $('#location_select').html(html); }
    });
    return false;   
  });
}
