function IsBraAreaCode(field) {
	if (field.charAt(0) < "0" || field.charAt(0) > "9" || field.charAt(1) < "0" || field.charAt(1) > "9")
		return false;

	return true;
}