var Price = new Array();
Price[1]= new Array();
Price[1]['Panstick'] = 35.00;
Price[1]['Black Pot'] = 14.95;
Price[1]['1/2 oz black rim jar'] = 22.00;
Price[1]['1 oz black rim jar'] = 30.00;
Price[2]= new Array();
Price[2]['1/2 oz black rim jar'] = 29.95;
Price[3]= new Array();
Price[3]['30 ml'] = 34.95;
Price[4]= new Array();
Price[4]['Black Base Pot'] = 14.95;
Price[5]= new Array();
Price[5]['Black Base Pot'] = 14.95;
Price[5]['Panstick'] = 35.00;
Price[6]= new Array();
Price[6]['1/2 oz clear base black rim shaker'] = 16.00;
Price[7]= new Array();
Price[7]['1/2 oz clear base black rim shaker'] = 16.00;
Price[7]['1oz'] = 20.00;
Price[9]= new Array();
Price[9]['1/2 oz clear base black rim shaker'] = 19.50;
Price[10]= new Array();
Price[10]['Black Base Pot'] = 14.95;
Price[11]= new Array();
Price[11]['Black Base Pot'] = 14.95;
Price[12]= new Array();
Price[12]['Black Base Pot'] = 14.95;
Price[13]= new Array();
Price[13]['Standard Size'] = 24.95;
Price[14]= new Array();
Price[14]['Standard Size'] = 15.00;
Price[15]= new Array();
Price[15]['15ml'] = 12.00;
Price[16]= new Array();
Price[16]['Black Base Pot'] = 14.95;
Price[17]= new Array();
Price[17]['Black Base Pot'] = 14.95;
Price[18]= new Array();
Price[18]['Standard Size'] = 19.95;
Price[19]= new Array();
Price[19]['Standard Size'] = 19.95;
Price[20]= new Array();
Price[20]['Standard Size'] = 19.95;
Price[21]= new Array();
Price[21]['Black & Silver Tube'] = 19.00;
Price[22]= new Array();
Price[22]['Black & Silver Tube'] = 19.00;
Price[25]= new Array();
Price[25]['15ml'] = 19.95;
Price[26]= new Array();
Price[26]['Black Based Pot'] = 16.00;
Price[27]= new Array();
Price[27]['Black Base Pot'] = 14.95;
Price[28]= new Array();
Price[28]['Black Base Pot'] = 14.95;
Price[29]= new Array();
Price[29]['15ml'] = 15.00;
Price[30]= new Array();
Price[30]['50ml'] = 22.50;
Price[31]= new Array();
Price[31]['50ml'] = 12.00;
Price[31]['125ml spray'] = 22.00;
Price[32]= new Array();
Price[32]['Latex Wedges 1 x 8 block'] = 7.00;
Price[33]= new Array();
Price[33]['Brush Roll - complete'] = 250.00;
Price[34]= new Array();
Price[34]['Brush Roll - complete'] = 450.00;
Price[35]= new Array();
Price[35]['Angle Eyebrow Taklon'] = 11.50;
Price[35]['Square Taklon'] = 11.50;
Price[35]['Lip Liner'] = 25.00;
Price[35]['Eyeliner'] = 16.50;
Price[35]['Small Contour'] = 16.50;
Price[35]['Medium Contour'] = 16.50;
Price[35]['Shadow Crease'] = 16.50;
Price[35]['Small Shadow'] = 22.00;
Price[35]['Angled Shadow Contour'] = 18.50;
Price[35]['Large Shadow'] = 18.50;
Price[35]['Foundation'] = 42.00;
Price[35]['Blusher'] = 32.00;
Price[35]['Bronzer'] = 49.50;
Price[35]['Large Powder'] = 42.00;
Price[35]['Fan Powder'] = 48.00;
Price[36]= new Array();
Price[36]['Kabuki Brush'] = 21.50;
Price[37]= new Array();
Price[37]['23 hole with pocket'] = 49.00;
Price[37]['12 hole with pocket'] = 39.00;
Price[38]= new Array();
Price[38]['4grm pot'] = 9.00;
Price[38]['Bruise, Burn, Camouflage Kits'] = 29.50;
Price[38]['1 oz black rim jar'] = 27.50;
Price[40]= new Array();
Price[40]['50ml'] = 25.00;
Price[41]= new Array();
Price[41]['Standard Size'] = 19.00;
Price[44]= new Array();
Price[44]['1 Litre'] = 125.00;
Price[44]['50ml'] = 16.00;
Price[44]['125ml'] = 22.00;
Price[45]= new Array();
Price[45]['1 Litre'] = 125.00;
Price[45]['50ml'] = 16.00;
Price[45]['125ml'] = 22.00;
Price[46]= new Array();
Price[46]['50ml'] = 33.50;
Price[47]= new Array();
Price[47]['Pack of 5'] = 7.00;
Price[48]= new Array();
Price[48]['4 grm'] = 11.00;
Price[48]['1 oz'] = 31.50;
Price[48]['250grm'] = 67.50;
Price[49]= new Array();
Price[49]['4 grm'] = 11.00;
Price[49]['250 grm'] = 62.50;
Price[50]= new Array();
Price[50]['4 grm'] = 11.00;
Price[51]= new Array();
Price[51]['4 grm'] = 11.00;
Price[52]= new Array();
Price[52]['50ml'] = 22.00;
Price[52]['3 ml phial'] = 5.00;
Price[52]['15ml'] = 9.00;
Price[53]= new Array();
Price[53]['50ml'] = 12.00;
Price[53]['3 ml phial'] = 5.00;
Price[54]= new Array();
Price[54]['50ml'] = 11.00;
Price[54]['1 Litre'] = 39.50;
Price[56]= new Array();
Price[56]['15ml'] = 12.00;
Price[57]= new Array();
Price[57]['1 oz'] = 20.00;
Price[61]= new Array();
Price[61]['Black Base Pot'] = 14.95;
Price[158]= new Array();
Price[158]['Wand'] = 14.95;
function changePrice(form,product){
	var size;
	size = document.getElementById('ChooseSize'+product);
	form.price.value=Price[product][size[size.selectedIndex].value];
	form.price1.value=Price[product][size[size.selectedIndex].value];
}
