$(function() {
	$("select").change(function() {
		var val = $(this).val();
		$(".osInfo").hide();
		$("#"+val).show("normal");
	});
});