function JuniorSizeSelectWht()
{
	var Size = document.ks05s.product.options[document.ks05s.product.selectedIndex].text;
  
  	var gPrice = "";
  
  	switch (Size)
  	{
		case "000":
			gPrice = "69.95";
			break;
		case "00":
			gPrice = "69.95";
			break;
		case "0":
			gPrice = "69.95";
			break;
		case "1":
			gPrice = "74.95";
			break;
		case "2":
			gPrice = "74.95";
			break;												
		default:
			gPrice = "69.95";
	}
  
	document.ks05s.price.value = gPrice;
	
	//The next two lines can be used for testing to make sure that the above lines are working.
	//var msg = "Selected size is " + Size + ". The price is " + Price;
	//alert(msg);
}

function JuniorSizeSelectBlu()
{
	var Size = document.ks05sbu.product.options[document.ks05sbu.product.selectedIndex].text;
  
  	var gPrice = "";
  
  	switch (Size)
  	{
		case "000":
			gPrice = "74.95";
			break;
		case "00":
			gPrice = "74.95";
			break;
		case "0":
			gPrice = "74.95";
			break;
		case "1":
			gPrice = "79.95";
			break;
		case "2":
			gPrice = "79.95";
			break;												
		default:
			gPrice = "74.95";
	}
  
	document.ks05sbu.price.value = gPrice;
	
	//The next two lines can be used for testing to make sure that the above lines are working.
	//var msg = "Selected size is " + Size + ". The price is " + gPrice;
	//alert(msg);
}