﻿jQuery.noConflict();

jQuery().ready(function() {
    var action_name = IsOverseas() ? "LocationDescendantHierarchy" : "LocationPrioritisedDescendants";
    jQuery('#region').regionLocalityDropdown(action_name, '#locations');
});

function IsOverseas() {
    return document.URL.toLowerCase().indexOf("overseas") != -1
}
