function formClick(){
    var val = document.getElementById("dd1").options[document.getElementById("dd1").selectedIndex].value;
    if(val.indexOf("blabla.html") != -1)
        NewWindow("iletisim.html","","400","450","no");
    else
        document.location = val;
}
