var cityhs = new chs(5);
==>
var cityhs = new Array(5);
function aaa()
    {alert( cityhs[3][0]);
    }
==>
function aaa()
    {alert( cityhs[3][0].hotel);
    }