var one = document.getElementById('map');
var two = document.getElementById('form_place');
var
styleOne = getComputedStyle(map),
styleTwo = getComputedStyle(form_place);
if (styleTwo.height != styleOne.height) {
one.style.height = styleTwo.height;
}