What you can do, is by simply using Javascript, you can reset the values based on the current option. Let's say we are using the example I posted in my comment. Suppose each country has three counties associated with it, and each county has three regions. You can write something like:
<script type="text/javascript">
var country_DD = document.getElementByID("ID_of_country_DD");
var county_DD = document.getElementByID("ID_of_county_DD");
var region_DD = document.getElementByID("ID_of_region_DD");
var value_of_Country_DD = country_DD.options[country_DD.selectedIndex].value;
if (value_of_Country_DD == "USA") {
county_DD.options[county_DD.selectedIndex].value = ""; //Resets whatever user had before
region_DD.options[region_DD.selectedIndex].value = "";
county_DD.options[0].value = "New York";
county_DD.options[0].innerHTML = "New York";
county_DD.options[1].value = "Boston";
county_DD.options[1].innerHTML = "Boston";
county_DD.options[2].value = "Atlanta";
county_DD.options[2].innerHTML = "Atlanta";
region_DD.options[0].value = "R1";
region_DD.options[0].innerHTML = "R1";
region_DD.options[1].value = "R2";
region_DD.options[1].innerHTML = "R2";
region_DD.options[2].value = "R3";
region_DD.options[2].innerHTML = "R3";
}
else if (value_of_Country_DD == "India") {
//Do the same .innerHTML stuff here too, just forgot the first time. Too lazy.
county_DD.options[county_DD.selectedIndex].value = ""; //Resets whatever user had before
region_DD.options[region_DD.selectedIndex].value = "";
county_DD.options[0].value = "Mumbai";
county_DD.options[1].value = "Option2";
county_DD.options[2].value = "Option3";
region_DD.options[0].value = "Region1";
region_DD.options[1].value = "Region2";
region_DD.options[2].value = "Region3";
}
else {
county_DD.options[county_DD.selectedIndex].value = ""; //Resets whatever user had before
region_DD.options[region_DD.selectedIndex].value = "";
county_DD.options[0].innerHTML = "";
county_DD.options[1].innerHTML = "";
county_DD.options[2].innerHTML = "";
region_DD.options[0].innerHTML = "";
region_DD.options[1].innerHTML = "";
region_DD.options[2].innerHTML = "";
}
</script>
Then attach this code to the country drop down item, and trigger the event however you would like. The code will reset the options and the current selected value whenever the user changes country.
In this way, if the user goes back to change an option with the intent to keep the others the same, the javascript will forceably change the current selected (or old values) to null, disallowing any mixing of regions.
Or, if looking at your JQuery, you already have the code to show what you want in the DD when the user picks and option, you can skip the majority of this code, and just trigger an event to when a user changes a value in the dropdown, you just use the county_DD.options[county_DD.selectedIndex].value = ""; stuff to make sure that the value of their old choice is set back to null.