/**
 * @author John Hamson
 */

function set_billing_country(html_form_id, form_id){
	var billing_region = '';
	country = jQuery(("div#"+html_form_id+" select[class='current_country']")).val();
	region = jQuery(("div#"+html_form_id+" select[class='current_region']")).val();

	for (wcf=1;wcf<=17;wcf++) {
		jQuery("#collected_data_"+wcf).val(jQuery("#wpsc_checkout_form_"+wcf).val());	
	}

	if(jQuery("#shippingSameBilling").is(':checked')){
		jQuery('.shipping_region').parent().parent().hide();
		jQuery('.shipping_country_name').parent().parent().hide();
	}

	jQuery('#current_country').val(country);
	jQuery('#region').val(region);
	submit_change_country();
}
