It may be a good idea to put some checks in here to make sure that the page has children, but this is working for me:
$page = $post->ID;
$children = wp_list_pages(“title_li=&child_of=”.$page.”&echo=0″);
if ($children) {?>
<ul>
<?php echo $children; ?>
</ul>
<?php } ?>