TODO supply a title
        
        
    
    
         
            
                
                    Origen:
                    
                        
                            ..Seleccione uno..                           
                        
                    
                
                
                    Destino:
                    
                        
                            ..Seleccione uno..                           
                        
                                        
                
                
                    Fec Desde:
                    
                    Fec Hasta:
                    
                
                
                    
                
                
            
         
    
    
    
    var url_general = 'https://www.teletiquete.com/api/v1/';
    var url_f = 'get_city_by_nit/{"nro_identificacion":"890800256"}';
    $.get(url_general+url_f, function(data) {
        $.each(data.content, function(index, obj) {            
            $("#optOrigen").append(''+obj.label+'');
        });
    });
    
    $("#optOrigen").on('change', function() {
        url_f = 'get_destination_city_by_nit/{"id_origen":"'+this.value+'","nro_identificacion":"890800256"}';
        $.get(url_general+url_f, function(data) {
            $.each(data.content, function(index, obj) {            
                $("#optDestino").append(''+obj.label+'');
            });
        });        
    });