function openDir( form ) {

	var newIndex = document.getElementById('searchCat').category.selectedIndex;

	if ( newIndex == 0 ) {

		alert( "Please select a location!" );

	} else {

		cururl = document.getElementById('searchCat').category.options[ newIndex ].value;

		window.location.assign( cururl );

	}

}