function submitForm(pform,pfield){
/*
Purpose : Used when the selecting option from combo submits the form.Only option values other than default should be allowed to be passed.
parameters required 
1.only the form name
2.complete object name..[document.formname.objectname]
*/
var val;
val=pfield.value;
//alert(val);
	if(val!= ""){
		pform.submit();
		return true;
	}else{
		return false;
	}

}//func submitForm ends

