$(function(){
		$("#item_id").change(function () {
			    	
					$("#G3018A").hide();
					$("#G3018").hide();
					$("#G3624A").hide();
					$("#G3624").hide();
					$("#G3DA36").hide();
					$("#G3DA48").hide();
					$("#G3SH").hide();
					
			var val = $(this).val();
			switch(parseInt(val)){
			
			case 1: 
				$("#G3018A").show();
				break;
			case 2: 
				$("#G3018").show();
				break;
			case 3: 
				$("#G3624A").show();
				break;
			case 4: 
				$("#G3624").show();
				break;				
			case 5: 
				$("#G3DA36").show();
				break;
			case 6: 
				$("#G3DA48").show();
				break;
			case 7: 
				$("#G3SH").show();
				break;
							
			}
		});
	});