function quickLookUp()
{

	if(document.getElementById("quick_lookup"))
	{
		opt=document.getElementById("quick_lookup").value;
		if(opt=="")
		{
			alert("Please select any option.");
			return false;
		}
		else{
			document.location.href=opt;
		}
		
	}
}