WordPress out of the box allows you to create excerpts for posts but not pages, to add a excerpt meta field to your pages, all you need is to add the following code to your functions.php file:
{code type=”php”}
add_post_type_support(‘page’, ‘excerpt’);
{/code}
The above code work with WordPress 3.0 and above.