PHP - 如何使用JavaScript动态内容解析来自站点的数据

I am trying parse data from this site: www.sberbank.ua/branches/, and I am using simple HTML DOM Parser.

I tried this:

include_once(dirname(__FILE__).'/simple_html_dom.php');
$html = file_get_html('http://www.sberbank.ua/branches/');
foreach($html->find("div.bitem") as $e) {
    echo $e->innertext."<br>";
}

This is the data that I need parse: screenshot

The problem is that the data is generated by javascript and when I tried get the DIV this was empty.

Please someone can help me to solve this?

I solved this using Firebug extension for Firefox, with this I found the URL that the JS function uses to get the data. Finally I parsed the data from the new URL.