function PayPal_UpdateForm(Form) {
	
	if (Form.elements['qty'].value == 1) {
		// Setup the form for single qty SKU
		Form.elements['item_name'].value = "Thigh High with Pocket";
		Form.elements['amount'].value = "14.95";
		
	
	}
	
	return true;
}