So that covers letters - what about....
if (eregi('^[a-zA-Z ]+$', $HTTP_POST_VARS['descr']))
{
// Blah blah
}
i.e. All letters (upper and lower) and a space... any number of times from beginning to end of the string
N.B. This allows a string to start or end with a space or a character.