function updateTotal(){
	if (document.videoform.cfv_qty.value != "")	{
		cfv_price = 295;
		cfv_add_price = 255;
		cfv_count = document.videoform.cfv_qty.value;
		if(cfv_count > 0 && cfv_count < 2){
			cfv_total = cfv_price;	
		}
		else if(cfv_count > 1){
			cfv_additional = cfv_count - 1;
			cfv_total = cfv_price + (cfv_additional * cfv_add_price);
		}else{
			cfv_total = 0.00;	
		}
	}else{
		cfv_total = 0.00;	
	}
	
	if (document.videoform.fov_qty.value != "")	{
		fov_price = 275;
		fov_add_price = 235;
		fov_count = document.videoform.fov_qty.value;
		if(fov_count > 0 && fov_count < 2){
			fov_total = fov_price;	
		}
		else if(fov_count > 1){
			fov_additional = fov_count - 1;
			fov_total = fov_price + (fov_additional * fov_add_price);
		}else{
			fov_total = 0.00;	
		}
	}else{
		fov_total = 0.00;	
	}	
	
	if(document.videoform.kit.value != "") {
		kit_price = 59.00;
		kit_count = document.videoform.kit.value;
		kit_total = kit_price * kit_count;
	}else{
		kit_total = 0.00;	
	}
	
	if(document.videoform.pliers.value != "") {
		pliers_price = 14.00;
		pliers_count = document.videoform.pliers.value;
		pliers_total = pliers_price * pliers_count;
	}else{
		pliers_total = 0.00;	
	}
	
	if(document.videoform.caliper.value != "") {
		caliper_price = 4.00;
		caliper_count = document.videoform.caliper.value;
		caliper_total = caliper_price * caliper_count;
	}else{
		caliper_total = 0.00;	
	}	
	
	if(document.videoform.flashlight.value != "") {
		flashlight_price = 14.00;
		flashlight_count = document.videoform.flashlight.value;
		flashlight_total = flashlight_price * flashlight_count;
	}else{
		flashlight_total = 0.00;	
	}	
	
	if(document.videoform.gauge.value != "") {
		gauge_price = 14.00;
		gauge_count = document.videoform.gauge.value;
		gauge_total = gauge_price * gauge_count;
	}else{
		gauge_total = 0.00;	
	}		
	
	if(document.videoform.mirror.value != "") {
		mirror_price = 7.00;
		mirror_count = document.videoform.mirror.value;
		mirror_total = mirror_price * mirror_count;
	}else{
		mirror_total = 0.00;	
	}		
	
	if(document.videoform.tape.value != "") {
		tape_price = 7.00;
		tape_count = document.videoform.tape.value;
		tape_total = tape_price * tape_count;
	}else{
		tape_total = 0.00;	
	}	
	
	if(document.videoform.tapem.value != "") {
		tapem_price = 4.00;
		tapem_count = document.videoform.tapem.value;
		tapem_total = tapem_price * tapem_count;
	}else{
		tapem_total = 0.00;	
	}	
	
	if(document.videoform.keychain.value != "") {
		keychain_price = 4.00;
		keychain_count = document.videoform.keychain.value;
		keychain_total = keychain_price * keychain_count;
	}else{
		keychain_total = 0.00;	
	}	
	
	if(document.videoform.bag.value != "") {
		bag_price = 7.00;
		bag_count = document.videoform.bag.value;
		bag_total = bag_price * bag_count;
	}else{
		bag_total = 0.00;	
	}	
	
	if(document.videoform.safetybook.value != "") {
		safetybook_price = 3.95;
		safetybook_count = document.videoform.safetybook.value;
		safetybook_total = safetybook_price * safetybook_count;
	}else{
		safetybook_total = 0.00;	
	}	
	
	if(document.videoform.handsignal.value != "") {
		handsignal_price = 2.95;
		handsignal_count = document.videoform.handsignal.value;
		handsignal_total = handsignal_price * handsignal_count;
	}else{
		handsignal_total = 0.00;	
	}
	
	if(document.videoform.rigging.value != "") {
		rigging_price = 3.95;
		rigging_count = document.videoform.rigging.value;
		rigging_total = rigging_price * rigging_count;
	}else{
		rigging_total = 0.00;	
	}	
	
	if(document.videoform.hat.value != "") {
		hat_price = 9.95;
		hat_count = document.videoform.hat.value;
		hat_total = hat_price * hat_count;
	}else{
		hat_total = 0.00;	
	}	
	
	if(document.videoform.poster.value != "") {
		poster_price = 9.95;
		poster_count = document.videoform.poster.value;
		poster_total = poster_price * poster_count;
	}else{
		poster_total = 0.00;	
	}
	finaltotal = 0.00;
	finaltotal = cfv_total + fov_total + kit_total + pliers_total + caliper_total + flashlight_total + gauge_total + mirror_total + tape_total + tapem_total + keychain_total + bag_total + safetybook_total + handsignal_total + rigging_total + hat_total + poster_total;
	document.videoform.totalprice.value = finaltotal.toFixed(2);
	
	
}