var EUR=0;
var PLN=1;
var price = new Array();
price[0]="11.50";
price[1]="30.00";
function onCurrencyChange(){
document.price.currency_code.value = document.currencyform.currency_code.options[document.currencyform.currency_code.selectedIndex].value;
}
function updatePrice(){
document.price.amount.value=price[document.currencyform.currency_code.selectedIndex];
}

