function recieveTextFromFlash(countryId) {
    //$("#country").val(countryId);
    window.location= "/intro/redirect?country="+countryId;
    //loadLanguages(countryId);
}

function loadLanguages(id) {

    if(id == 888)
    {
        $("#language").html('<option value="29">Belgium Dutch</option><option value="11">Belgium French</option><option value="9">German</option><option value="3">English</option>');
        return true;
    }
    
    $.ajax({
	   type: "GET",
	   url: "/intro/get-languages/for/" + id,
	   success: function(response){
	       if(response)
	       {
	           $("#language").hide().html(response).show();
	       }
	   }
	 });	
}

$(document).ready(function() {
    
    $('#country').bind( 'blur change', function() {
        var countryId = $("select option:selected").val();
        loadLanguages(countryId);
    });
    
});

