function SetPaypal(oForm, oSize)
{
	// Split out our size, price and item number...
	//
	var sOptions 	= oSize.options[oSize.selectedIndex].value;
	var aOptions 	= sOptions.split(",");
	var sSize 		= aOptions[0];
	var sPrice 		= aOptions[1];
	var sItemNumber	= "" + aOptions[2];
	
	// Set the price and item number:
	//
	oForm.amount.value = "$" + sPrice;
	oForm.os0.value = sSize;
	oForm.item_number.value = sItemNumber;

	//alert("Value: " + oSize.options[oSize.selectedIndex].value);
}

