Puedes usar otras alternativas de Captcha mas flexibles como por ejemplo:
http://www.phpcaptcha.org/
Aqui te explican como implementarlo:
http://www.phpcaptcha.org/documentation/quickstart/
Y basicamente el control de si captcha fue o no escrito es simple :
Código PHP:
Ver originalif ($securimage->check($_POST['captcha_code']) == false) {
// the code was incorrect
// handle the error accordingly with your other error checking
// or you can do something really basic like this
die('The code you entered was incorrect. Go back and try again.'); }
Te lo recomiendo, yo lo uso y es bueno, ademas que recaptcha tiene esa tremenda caja con sus textos, etc, si es que no lo usas por la API sin embargo este otro es mas editable.
suerte.