How To Display Value from Theme Options Field in Front End Template?

I think you need to display it like this:

<?php $options = get_option( 'your_registered_option' ); echo $options['sample_select_options']; ?>

Replace your_registered_option with the name you gave in functions php for register_setting();

Hope this helps