One way is to use [man]in_array/man with an array of the disallowed keywords:
if (in_array($_POST['Text_Box_12'],
array('01-', '02-', '03-', '04-', '05-', '06-', '07-', '08-', '09-')))
die('This keyword is disallowed.');
Another way is to use a regular expression, since the format of your disallowed keywords follows a regular pattern:
if (preg_match('/^0\d\-$/', $_POST['Text_Box_12']))
die('This keyword is disallowed.');