       var map, geoResult;
	   var coord2;

		function showAddress (value, st) {
			if (!st) st="example#customPoint";
            map.removeOverlay(geoResult);			
            var geocoder = new YMaps.Geocoder(value, {results: 1, boundedBy: map.getBounds()});	
			alert(geocoder);
            YMaps.Events.observe(geocoder, geocoder.Events.Load, function () {      

                if (this.length()) {
//					var placemark = new YMaps.Placemark(this.get(0).getGeoPoint(), {style: st});
//					placemark.name = "Отделение № 31<br>Дніпропетровськ<br>пл. Бєдного Дем'яна, 5";
					placemark.name = value + this.get(0).getGeoPoint();
					coord2=this.get(0).getGeoPoint()+'<br>';
					
				
                    geoResult = this.get(0);
//                    map.addOverlay(placemark);
//                    map.setBounds(geoResult.getBounds());
                  //  alert(geoResult);
                }else {
                   alert("Ничего не найдено" + value);
               }
            });
			
//			var div = geocoder.jQuery("123");
//			div.prependTo('div#YMapsContent');
        }
