// JavaScript Document
function combosubmit(fname){
	document.form1.action=fname;
	document.form1.submit();
	}
function submitform(fname){
	document.form1.checkvalue.value="Akhtar";
	document.form1.submit();
	}
