function evfrissit() {
var url = "http://www.chemoltravel.hu/crepjegy_get_vissza.php?indulas="; // The server-side script
var container = document.getElementById("visszaut");
var isWorking = false;
var indulasValue = document.getElementById("indulas").value;
var varosValue = document.getElementById("cvaros").value;

var http = getHTTPObject();

http.open("GET", url + escape(indulasValue)+"&varos="+escape(varosValue), true);
http.onreadystatechange=function() {
if (http.readyState == 4) {
if (http.status == 200 ) {
container.value=http.responseText;
}
}
}
http.send(null);
}

function megtobbvaros(value) {
if (value=='megtobb') {
window.location.href='https://repulojegy.chemoltravel.hu/';
}
}
