function drop_down_list()
{
    var state = $('#Ptype').val();
    $.getScript("js/"+ state.toLowerCase() +".js", function(){
    mnprice(document.SForm.mnprice);
	$('#mnprice').show();
    mxprice(document.SForm.mxprice);
	$('#mxprice').show();
    prop_code(document.SForm.prop_code);
	$('#prop_code').show();
    });
}
$(document).ready(function(){
$("#Ptype").change(drop_down_list);
});

