Here is my jfiddle: http://jsfiddle.net/6mfb1kL0/
HTML
<div id="SearchDiv">
Hello there...
</div>
<button type="button" onClick="changeHeight();">Click Me!</button>
CSS
#SearchDiv{
background-color:red;
width:1000px;
height:20px;
}
JS
function changeHeight() {
document.getElementById('SearchDiv').style.height = "200px";
}