add "id='myiframe'" to the iframe, then use this script :

<script>

function f1()
{
var x=document.getElementById("myiframe");
x.src=x.src+Math.floor(random()%100000);
}

setInterval(f1,30*1000);

</script>