function IsBraZipCode(field) {
	ZipCodeLen = field.length;
	if (!ZipCodeLen)
		return false;

	if (ZipCodeLen < 9)
		return false;

	if (field.charAt(5) != "-")
		return false;

	ic_valido = 1;
	for (pos = 0;pos <= 4;pos ++) {
		if (field.charAt(pos) < "0" || field.charAt(pos) > "9") {
			ic_valido = 0;
			break;
		}
	}

	for (pos = 6;pos <= 8;pos ++) {
		if (field.charAt(pos) < "0" || field.charAt(pos) > "9") {
			ic_valido = 0;
			break;
		}
	}

	if (!ic_valido)
		return false;

	return true;
}