在没有看到任何代码的情况下,可以尝试以下操作
$(\'#IDofYourCountrySelectField\').on(\'change\', function() {
//Code to update option values of city select field
});
或
$(\'#IDofYourCountrySelectField\').change(function() {
//Code to update option values of city select field
});