$(function(){
		$("#item_id").change(function () {
			    	
					$("#SL35ST").hide();
					$("#SL36SUV").hide();
					$("#SL42SUV").hide();
					$("#SL54DD").hide();
					
			var val = $(this).val();
			switch(parseInt(val)){
			
			case 1: 
				$("#SL35ST").show();
				break;
			case 2: 
				$("#SL36SUV").show();
				break;
			case 3: 
				$("#SL42SUV").show();
				break;
			case 4: 
				$("#SL54DD").show();
				break;
			
			
			}
		});
	});
