/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */


$.mask.definitions['X'] = '[0-9]*';

function aplicarMascaras() {
    jQuery(function($) {
        $(".tcel").mask("(99)99999999X", {placeholder: " " }, {completed: function(){
        }} );
    
    });
        
    
    
    jQuery(function($) {
        $(".tcom").mask("(99)99999999X", {placeholder: " " }, {completed: function(){
        }} );
    });
    
     jQuery(function($) {
       $(".tres").mask("(99)99999999X", {placeholder: " " }, {completed: function(){
        }} );
    });
}



