How to change area in square meters from drop down to from-to input fields?

1.  Admin->Real estates->Fields->Edit area->Change from Type dropdown to short input

2. Additional you need change wanted template files, for example templates\bootstrap2-responsive\components\search.php, line 15-17:

<select id="search_option_3" class="span3 selectpicker nomargin" placeholder="{options_name_3}">
{options_values_3}
</select>

Replace with:

<input id="search_option_3_from" type="text" class="span3" placeholder="{lang_From} ({options_prefix_3}{options_suffix_3})" />
<input id="search_option_3_to" type="text" class="span3" placeholder="{lang_To} ({options_prefix_3}{options_suffix_3})" />

Of course, you probably will need also small css fixes to show it nicely.