$(document).ready(function() {
	$('#product-selector').change(function(e){
		$('#product_cage div').each(function(){
			$(this).hide();
		});
		
		var selval = $("#product-selector option:selected").val();
		if (selval > 0)
		{
			$('.mil-prod' + selval).show();
		}
	});
});
