$(function(){
		$("#item_id").change(function () {
			    	
					$("#40618-TP-1P").hide();
					$("#40622-TP-1P").hide();
					$("#40624-TP-1P").hide();
					$("#40630-TP-1P").hide();
					$("#40636-TP-1P").hide();
					$("#40642-TP-1P").hide();
					$("#40648-TP-1P").hide();
					
			var val = $(this).val();
			switch(parseInt(val)){
			
			case 1: 
				$("#40618-TP-1P").show();
				break;
			case 2: 
				$("#40622-TP-1P").show();
				break;
			case 3: 
				$("#40624-TP-1P").show();
				break;
			case 4: 
				$("#40630-TP-1P").show();
				break;
			case 5: 
				$("#40636-TP-1P").show();
				break;
			case 6: 
				$("#40642-TP-1P").show();
				break;
			case 7: 
				$("#40648-TP-1P").show();
				break;
			}
		});
	});