Problem with multiple menus in theme

To display a menu you need to use the wp_nav_menu function (Codex reference).

Try changing your template file to use the following code:

<?php wp_nav_menu( array( 'theme_location' => 'main-menu' ) ); ?>