function reload(){
	var val=form.subject.options[form.subject.options.selectedIndex].value; 
	
	if(val== ""){
		self.location='index.php?id=1';
	}else{
		self.location='index.php?id=1&subject=' + val ;
	}
	
	
	//document.onlineform.subject.value = val;
	//document.getElementById('onlineform').submit();
	//document.onlineform.submit();
}
