When entering the billing information during checkout, if the customer selects Canada as the country, then the required field for State/Providence disappears and there is no dropdown list to select the correct providence.
It works fine for the state selection when United States has been selected.
Thanks for your help in advance.
jQuery(document).ready(function(){
jQuery('#billing').change(function() {
if(jQuery('#billing option:selected').val() == "US") {
jQuery("#region_id_select").css("display", "block"); }else{ jQuery("#region_id_select").css("display", "none"); } }); });