
$(document).ready(function() {                 
    $(".refreshcaptcha").click(function () {        
        bild = new Image();
        zufall = Math.random();
        bild.src = "dresscode.php?"+zufall;        
        $(".refreshcaptcha").children().first().remove();
        $(".refreshcaptcha").append(bild);                                              
    });         
 });
