$(document).ready(function()
{
	$("#getPDF").change(function()
	{
		if ($(this).attr("value") != "none")
		{
			window.open("pdf/"+$(this).attr("value"), "_blank");
		}
	});
});