// checks the zipcode
function validate_zipcode(zipcode)
{	 
	if(zipcode.length==5)
	{
		if(zipcode.match( new RegExp("^([0-9]*)$") )) return true;
		
		else return false
	}	
}
