This did it!
SELECT Employees.EmpId, Employees.EmpLastName, Employees.EmpInitial, Employees.EmpFirstName, Employees.EmpDateOfBirth, Month([EmpDateOfBirth]) AS BirthMonth
FROM Employees
WHERE (((Month([EmpDateOfBirth]))=[Please Enter A Month (1-12)]));
Should anyone else need the same same it...