function is_child($pageID) {
global $post;
if( is_page() && ($post->post_parent==$pageID) ) {
return true;
} else {
return false;
}
}
<?php
if(is_child(343)) {
echo "This is a child page of 'The Parent Page Title'.";
}
?>