A family of Microsoft relational database management systems designed for ease of use.
You might like to take a look at DatabaseBasics.zip n my public databases folder at:
https://onedrive.live.com/?cid=44CC60D7FEA42912&id=44CC60D7FEA42912!169
In this little demo file the section on 'entering data via a form/subforms' includes a contacts form in which the country, region, and city are selected in three correlated combo boxes in the way you describe. The important thing to note here is that only the lowest level in the hierarchy, city in my case, should be stored in a column in the table, The country and region should be selected in unbound combo boxes. This is because region and country are functionally determined by city, so to store them in the contacts table would be redundant. The table would consequently not be normalized the Third Normal Form (3NF) and at risk of update anomalies.
In a continuous form correlated combo boxes are a little more complicated if the referenced tables in question have surrogate primary keys, usually autonumbers, which are hidden in the combo boxes' lists. In this case it is necessary to use a 'hybrid' control made up of a combo box upon which a text box is carefully superimposed to give the appearance of a single combo box control. The second form in the 'entering data via a form/subforms' section of the demo shows the same data in continuous forms view, using this technique.