/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
function cargar_combos($controller, $select)
{
    $.getJSON('http://www.educandia.com/is/index.php/combo/'+$controller, function(data) {
        var items = '';

        $.each(data, function(key, val) {
            items += '<option value="' + key + '">' + val + '</option>';
        });

        $('#'+$select).html(items);    
    });
}    
