/***** Global JS functions for Stilebero *****/

/* Function to amend shipping price for non-UK customers */	function amendShippingPrice(selectList, formName) {
		document.forms[formName].shipping.value = selectList.options[selectList.selectedIndex].value;
	}
