
jQuery(document).ready(function(){

	jQuery('.wpsc_checkout_field18').css({'display':'none'});
	var sel_txt = jQuery('#region_select_6 select :selected').text();
	jQuery('#wpsc_checkout_form_18').val(sel_txt);



	jQuery('#region_select_6 select').live("change", function(){
		var indx = jQuery(this).attr("selectedIndex");
		var text = jQuery(this).find("option:eq(" + indx +")").text();
		jQuery('#wpsc_checkout_form_18').val(text);
	});

	
	jQuery('ul#widgets-newsletter li.widget_mailpress div.newsletter-title-trail').html('Signup for our newsletter to hear about special offers, coupons, new designs and upcoming events.');

});
