function bindDistributorLocatorForm() {
  $("#countryDD").bind("change", function(){
    $.get("/ajax.php?p=territories&country_id=" + $(this).val(), function(data) {
      if(data == "-1")
        $("#territoryDD").attr("disabled", "disabled").html("");
      else {
        $("#territoryDD").removeAttr("disabled").html(data);
      }
    });
  });
}
