$i=function(id){return document.getElementById(id);}
function changPrice(){
	var $Currency_value = $i("Currency").options[$i("Currency").selectedIndex].value;
	var $Currency_code = $i("Currency").options[$i("Currency").selectedIndex].text;
	var p=document.forms["formCurr"];
	p.currency_codes.value=$Currency_code;
	p.currency_values.value=$Currency_value;
	p.submit();

}