Display the contents of a custom field of a page on their child

$value = get_post_meta($post->post_parent,'your fields name',true);
if(!empty($value)){
    // display the value
    echo $value;
}

tech