function ShowHideBedroom(v){
  if(v == "other")
  {
    Element.show('rooms');
    document.getElementById('property_bedrooms').focus()
    document.getElementById('property_bedrooms').select()
  }
  else
  {
    Element.hide('rooms');
  }
}


function ShowHideBathroom(v)
{
    if(v == 'other')
    {
        Element.show('other_bathrooms');
    }
    else
    {
        Element.hide('other_bathrooms');
    }
}

function ShowHideGarages(v)
{
    if(v == 'other')
    {
        Element.show('other_garages');
    }
    else
    {
        Element.hide('other_garages');
    }
}

function ShowHideDiningRooms(v)
{
    if(v == 'other')
    {
        Element.show('other_diningRooms');
    }
    else
    {
        Element.hide('other_diningRooms');
    }
}

function ShowHideEnsuites(v)
{
    if(v == 'other')
    {
        Element.show('other_ensuites');
    }
    else
    {
        Element.hide('other_ensuites');
    }
}

function ShowHideLivingRooms(v)
{
    if(v == 'other')
    {
        Element.show('other_livingRooms');
    }
    else
    {
        Element.hide('other_livingRooms');
    }
}

function ShowHideReceptionRooms(v)
{
    if(v == 'other')
    {
        Element.show('other_receptionRooms');
    }
    else
    {
        Element.hide('other_receptionRooms');
    }
}

function ShowHideTvRooms(v)
{
    if(v == 'other')
    {
        Element.show('other_tvRooms');
    }
    else
    {
        Element.hide('other_tvRooms');
    }
}

function ShowHideHallways(v)
{
    if(v == 'other')
    {
        Element.show('other_hallways');
    }
    else
    {
        Element.hide('other_hallways');
    }
}

function ShowHideLevels(v)
{
    if(v == 'other')
    {
        Element.show('other_levels');
    }
    else
    {
        Element.hide('other_levels');
    }
}

function ShowHideStudyRooms(v)
{
    if(v == 'other')
    {
        Element.show('other_studyRooms');
    }
    else
    {
        Element.hide('other_studyRooms');
    }
}

function ShowHideKitchen(v)
{
    if(v == 'other')
    {
        Element.show('other_kitchen');
    }
    else
    {
        Element.hide('other_kitchen');
    }
}

function ShowHideCarPorts(v)
{
    if(v == 'other')
    {
        Element.show('other_carPorts');
    }
    else
    {
        Element.hide('other_carPorts');
    }
}

function ShowHidePatio(v)
{
    if(v == 'other')
    {
        Element.show('other_patio');
    }
    else
    {
        Element.hide('other_patio');
    }
}

function ShowHideLaundryRooms(v)
{
    if(v == 'other')
    {
        Element.show('other_laundryRooms');
    }
    else
    {
        Element.hide('other_laundryRooms');
    }
}

function ShowHideBalcony(v)
{
    if(v == 'other')
    {
        Element.show('other_balcony');
    }
    else
    {
        Element.hide('other_balcony');
    }
}

function ShowHidePropertyType(v)
{
    if(v == 'other')
    {
        Element.show('prop_type');
    }
    else
    {
        Element.hide('prop_type');
    }
}
// END PROPERTY FOR SALE JAVASCRIPT=======
