List direct children of page

Try this:

wp_list_pages(array('child_of' => $post->post_parent,'exclude' => $post->ID, 'depth' => 1))

Read the codex for more details.