/*var select_city = function(id) {
    $.get("./", { m: "edit_hotel", action: "addnew", cid: id, select_get: true },
      function(data){
        //alert("Data Loaded: " + data);
        $('#citys').html(data);  
      });
}
*/


var select_city_search = function(id,path, elm) {
    $.get(path, { cid: id, select_get: true },
      function(data){
        //alert("Data Loaded: " + data);
        $(elm).html(data);  
        $('form.jNice').jNice();
      });
}
