$(function(){
		$("#item_id").change(function () {
			    	
					$("#1618DD").hide();
				    $("#1622DD").hide();
					$("#1624DD").hide();
					$("#1630DD").hide();
					$("#1636DD").hide();
					$("#1642DD").hide();
					$("#1648DD").hide();
			
			var val = $(this).val();
			switch(parseInt(val)){
			
			case 1: 
				$("#1622DD").show();
				break;
			case 2: 
				$("#1624DD").show();
				break;	
			case 3: 
				$("#1630DD").show();
				break;
			case 4: 
				$("#1636DD").show();
				break;					
			case 5: 
				$("#1642DD").show();
				break;
			case 6: 
				$("#1648DD").show();
				break;	

			}
		});
	});
