function validZip(zip) {
	if (isBlank(zip)) {
		return false;
	}
	if (zip.length < 5) {
		return false;
	}
	return true;
}