function selectProperty(newId)
 {
   nextPage = newId.options[newId.selectedIndex].value
		
   if (nextPage != "")
   {
      document.location.href = "/rental/" + nextPage
   }
 }

