function jumpmenu(form) {
//Function to allow the changing of shopping category by choosing from the drop down
var newIndex = form.jumpMenu.selectedIndex;

	if ( newIndex == 0 )
	{
		//Catch invalid page choice from drop down menu and stay at current page
		document.location.href = document.location.href;

	}
	else
	{
		//Jump to Page chosen from drop down menu
		locationVar = form.jumpMenu.options[ newIndex ].value;
		if (locationVar != "")
		{
		document.location.href = locationVar;
		}

	}

}

//spam blocker script

       if (audit()) {
            // Visitor entered correct number
       } else {
            // Wrong number
       }

