$(document).ready(function(){
		$("#select2").css({"display":"none"})
		$("#Buy").click(function(){var buylink = $(this).attr("href");if(buylink == "#"){alert("Please Select!");}else{return true;}})
		$("#select").change(function(){
			var opval = $("#select option:selected").get(0).value;
			switch(opval){
   			case "Download Version":
					$("#price").html("Price:");
					$("#select2").css({"display":"block"});
     				break;
   			case "CD Version":
					$("#price").html("Price: "+ cdp);
					$("#select2").css({"display":"none"});
					$("#Buy").attr("href",cdl); 
     				break;
   					}
			});
		$("#select2").change(function(){
			var opval = $("#select2 option:selected").get(0).value;
			switch(opval){
   			case "1PC":
					$("#price").html("Price: "+dlp1);
					$("#Buy").attr("href",dll1);
     				break;
   			case "2-5PC":
					$("#price").html("Price: "+dlp2);
					$("#Buy").attr("href",dll2);
     				break;
			case "5-10PC":
					$("#price").html("Price: "+dlp3);
					$("#Buy").attr("href",dll3);
     				break;
   					}

			});
	});

