function searchForm (){
		var ss = document.getElementById('ss');
		var s = document.getElementById('s');
		var svalue= s.value;
		if(ss.options[ss.selectedIndex].value==2) {
			window.location.href = 'http://www.thelancet.com/search/results?searchTerm='+svalue + '&fieldName=AllFields&year=&volume=&page=&journalFromWhichSearchStarted=';
		}
		else {
			window.location.href = '/index.php?simple_search&s='+svalue;
		}
}