This code will display the title of your sub(child) pages. I hope this helps.
<?php
$mypages = get_pages(‘child_of=’.$post->ID.’&sort_column=post_date&sort_order=ASC’);
foreach($mypages as $page)
{
?>
<?php echo get_the_title($page->ID) ; ?>
<?php
}
?>