setTimeout("fillform()",100) ;

function fillform( ) {

    yqlgeo.get( '67.253.61.152' ,function(o) {

    alert(o.place.postal.content + ' ' + o.place.name + ',' + o.place.country.content +  
        ' (' + o.place.centroid.latitude + ',' +
               o.place.centroid.longitude + ')'
        );

  } );
}

