Add the below Code in to function.php

register_nav_menu( 'secondary', __( 'Secondary Menu', 'twentytwelve') );

Use the below code to call the secondary Menu

<?php wp_nav_menu( array( 'theme_location' => 'secondary', 'menu_class' => 'nav-menu' ) ); ?
 >