// JavaScript Document

/* clears value from text field */

function clearVal(frm, el, val){
		var newstr = new String();
		//get the value of the textbox zip_code
		if(val != ''){
			newstr = '';
			document.forms[frm].elements[el].value = newstr;
		}
	}