(function ($) { $(document).ready(function () { //important to update the date if the city is change if ($('#billing_city').prop('type') === 'select-one') { bindSelectWoo("billing"); } $('#billing_city').change(function () { $('body').trigger('update_checkout'); }); if ($('#shipping_city').prop('type') === 'select-one') { bindSelectWoo("shipping"); } $('#shipping_city').change(function () { $('body').trigger('update_checkout'); }); //change countries $('#billing_country').change(function () { callAjax('billing', $(this).val()); }); $('#shipping_country').change(function () { callAjax('shipping', $(this).val()); }); //ajax function callAjax(addr, country) { var selector = '#' + addr + '_city'; $(selector).val(''); $.ajax({ cache: false, type: "POST", url: ajax_object.ajax_url, data: { action: 'check_cities_field', country_code: country }, success: function (response) { var selParent = $(selector).parent(); selParent.html(''); if (response === 'input') { selParent.append(''); } else { selParent.append("