jQuery(document).ready(function(){

    jQuery('input:text').setMask();
       cidade();
    jQuery('#uf').change(function(){
        jQuery('#cidade').hide();
        jQuery('#carregar').show();
        cidade();
    });
       jQuery('#carregar').hide();
});
function cidade(){
    var estado = jQuery('#uf').val();
    var cidade = jQuery('#cidade_hidden').val();
    if (cidade == ''){
    }else{
        jQuery.get(
            '/portal/ajaxcidades',
            {
                'uf' : estado,
                'cidade' : cidade
            },
            function(data){
                jQuery('#cidade').empty().html(data);
                jQuery('#carregar').hide();
                jQuery('#cidade').show();
            }
            );
    }
}
function disableSelection(target){
if (typeof target.onselectstart!="undefined") //IE route
	target.onselectstart=function(){return false}
else if (typeof target.style.MozUserSelect!="undefined") //Firefox route
	target.style.MozUserSelect="none"
else //All other route (ie: Opera)
	target.onmousedown=function(){return false}
target.style.cursor = "default"
}

//Sample usages
//disableSelection(document.body) //Disable text selection on entire body
//disableSelection(document.getElementById("mydiv")) //Disable text selection on element with id="mydiv"
//function Verificar() {
//    var ctrl = '';
//    if (window.event==undefined) {
//        ctrl=event.ctrlKey;
//    } else {
//        ctrl=window.event.ctrlKey;
//    }
//    if (ctrl) {event.keyCode=0; event.returnValue=false;}
//}
