Thanks A LOT! That helped! This is my solution!
<?php //
$pages = get_pages('child_of='.$post->ID);
foreach($pages as $page)
{
$content = $page->post_content;
if($page->post_title=="Tutoren")
{
$content = apply_filters('the_content', $content);
}
else continue;
?>
<h2><a href="<?php echo get_page_link($page->ID) ?>"><?php echo $page->post_title ?></a></h2>
<div class="entry"><?php echo $content ?></div>
<?php } ?>