function NewImageCode(){
    var url = '/index/newcode';
    new Ajax.Request(url, {
        asynchronous: false,
        method: 'POST',
        onSuccess: function(req){
            $('img_secury').src = req.responseText;
        }
    });
}
