jQuery(document).ready(function() {
	jQuery.getJSON("http://jsonip.appspot.com?callback=?", function(ipadd) {
		jQuery('#ipAddress').val(ipadd.ip);
	});
});
