Trying to retrieve post meta

Make sure you include the third argument to get_post_meta, a Boolean that determines whether or not it returns a single item or an array of items. The default is false, which is an array, so set it to true:

  <?php $value = get_post_meta ($post_id, 'newtheme_section_id', true ); ?>