jQuery(document).ready(function() {
	jQuery('#province_id').change(function(){
		$province_id = jQuery('#province_id').val();
		jQuery.get('locations.php',{ id: $province_id  }, function(data){
			jQuery('#city_id').html(data);
		});
	});
});

