$(document).ready(function () {
    $('#select-choice-1').change(function() {
        $("#select-choice-1 option:selected").each(function () {
              var lang = $(this).val();
              document.location.href = "./"+lang+"/main.jsp";
        });
   	});    
});
