
function build_form_path(web_path)
{
	var location = document.getElementById("location")
	var type     = document.getElementById("type")
	var bedrooms = document.getElementById("bedrooms")
	var minPrice = document.getElementById("minPrice")
	var maxPrice = document.getElementById("maxPrice")
	
	web_path    += 'properties-for-sale/';
	
	if(location.value != 0)
	{
		web_path += location.value+'/';
	}
	if(type.value != 0)
	{
		web_path +=type.value+'/';
	}
	if(bedrooms.value != 0)
	{
		web_path += bedrooms.value+'/';
	}
	if((minPrice.value != 0) && (maxPrice.value != 0))
	{
		web_path += minPrice.value+'-'+maxPrice.value+'/';
	}
	if((minPrice.value != 0) && (maxPrice.value == 0))
	{
		web_path += minPrice.value+'/';
	}
	if((maxPrice.value != 0) && (minPrice.value == 0))
	{
		web_path += maxPrice.value+'/';
	}

	return(web_path)
}