$(function(){
		$("#item_id").change(function () {
			    	
					$("#1518DD").hide();
				    $("#1522DD").hide();
					$("#1524DD").hide();
					$("#1530DD").hide();
					$("#1536DD").hide();
					$("#1542DD").hide();
					$("#1548DD").hide();
	
			
			var val = $(this).val();
			switch(parseInt(val)){
			
			case 1: 
				$("#1518DD").show();
				break;
			case 2: 
				$("#1522DD").show();
				break;	
			case 3: 
				$("#1524DD").show();
				break;
			case 4: 
				$("#1530DD").show();
				break;					
			case 5: 
				$("#1536DD").show();
				break;
			case 6: 
				$("#1542DD").show();
				break;	
			case 7: 
				$("#1548DD").show();
				break;

			}
		});
	});
