Hi chetan,
Change the css with below css.
#currency_converter .form_table
{
display: block;
float: left;
width: 100%;
border-left: solid 1px #cccccc;
border-right: solid 1px #cccccc;
border-bottom: solid 1px #cccccc;
padding-bottom: 10px;
background-color: #ffffff;
max-height: 200px;
overflow-y: scroll;
overflow-x: hidden;
}
Check the below example.
<style type="text/css">
#currency_converter
{
display: block;
float: left;
width: 100%;
border-left: solid 1px #cccccc;
border-right: solid 1px #cccccc;
border-bottom: solid 1px #cccccc;
padding-bottom: 10px;
background-color: #ffffff;
max-height: 300px;
overflow-y: scroll;
overflow-x: hidden;
}
</style>
<div id="currency_converter">
test<br />test<br />
test<br />test<br />
test<br />test<br />
test<br />test<br />
test<br />test<br />
test<br />test<br />
test<br />test<br />
test<br />test<br />
test<br />test<br />
test<br />test<br />
</div>
Demo