Code:
<?php include('<?php echo get_post_meta($post->ID, 'galleries', true) ?>'); ?>
That code is incorrect in a few ways.
The immediate reason you get T_STRING error is because you have single quotes within single quotes.
Also the use of include is incorrect and unnecessary..
Just do <?php echo get_post_meta($post->ID, 'galleries', true); ?>