// JavaScript Document

/* deletes zip code text from field replaces text with empty string */
function clearVal(frm, val){
		var newstr = new String();
		//get the value of the textbox zip_code
		if(val != ''){
			newstr = '';
			val = newstr;
			document.forms[frm].zip_code.value = newstr;
		}
	}