Dropdown (with onChange) with custom taxonomies

without seeing any code you could try the following

$('#IDofYourCountrySelectField').on('change', function() {
  //Code to update option values of city select field
});

or

$('#IDofYourCountrySelectField').change(function() {
  //Code to update option values of city select field
});